home *** CD-ROM | disk | FTP | other *** search
/ Micromanía: 150 Juegos 2010 / 150Juegos_16.iso / Shareware / Shape Smash / shape-smash.swf / scripts / mx / managers / IFocusManagerComponent.as < prev    next >
Encoding:
Text File  |  2010-05-14  |  454 b   |  21 lines

  1. package mx.managers
  2. {
  3.    public interface IFocusManagerComponent
  4.    {
  5.       function set focusEnabled(param1:Boolean) : void;
  6.       
  7.       function drawFocus(param1:Boolean) : void;
  8.       
  9.       function setFocus() : void;
  10.       
  11.       function get focusEnabled() : Boolean;
  12.       
  13.       function get tabEnabled() : Boolean;
  14.       
  15.       function get tabIndex() : int;
  16.       
  17.       function get mouseFocusEnabled() : Boolean;
  18.    }
  19. }
  20.  
  21.